home *** CD-ROM | disk | FTP | other *** search
/ Apple WWDC 1996 / WWDC96_1996 (CD).toast / Technology Materials / MacOS 8 Resources / Developer Tools / Mac OS 8 Interfaces & Libraries / Interfaces / IDLIncludes / TSMCollation.idl < prev    next >
Text File  |  1996-05-01  |  1KB  |  53 lines

  1. /*
  2.      File:        TSMCollation.idl
  3.  
  4.      Contains:    Declarations for the SOM based Text Services Manager service Objects.
  5.  
  6.      Version:    Technology:    System 8
  7.                  Release:    Universal Interfaces 3.0d3 on Copland DR1
  8.  
  9.      Copyright:    © 1995-1996 by Apple Computer, Inc.  All rights reserved.
  10.  
  11.      Bugs?:        If you find a problem with this file, send the file and version
  12.                  information (from above) and the problem description to:
  13.  
  14.                      Internet:    apple.bugs@applelink.apple.com
  15.                      AppleLink:    APPLE.BUGS
  16. */
  17.  
  18.  
  19. #include <somobj.idl>
  20. #include <somcls.idl>
  21. #include <TSMObject.idl>
  22. #include <Types.idl>
  23. #include <TextObjects.idl>
  24. #include <StringCompare.idl>
  25.  
  26. interface TSMCollation : TSMObject
  27. {
  28.  
  29.     OSStatus    DoCollationProcessText(
  30.                             in CollationRef collationRef,
  31.                             in CollateOptions options,
  32.                             in ConstTextObject text,
  33.                             in TextObjectIndex startIndex,
  34.                             in TextObjectIndex endIndex,
  35.                             in TextObject result);
  36. #ifdef __SOMIDL__
  37.     implementation
  38.     {
  39.         releaseorder:         DoCollationProcessText;
  40.         InitializeService      : override;
  41.         TerminateService       : override;
  42.         ServiceChanged        : override;
  43.         somInit                : override;
  44.         majorversion = 1;
  45.         minorversion = 1;
  46.         
  47.     };
  48. #endif
  49.  
  50. };
  51.  
  52.  
  53.